Word Division: On “word-break,” Soft Hyphens, and Zero-Width Spaces

Published on February 8, 2007 (↻ June 12, 2021), filed under (RSS feed for all categories).

This post is outdated. (Consider hyphens!)

Word breaks and hyphenation are sometimes a problem when it comes to little available space but long words: The longer the word and the less space available, the more a layout is at risk. English appears to be less affected than other languages (I suspect Finnish and also German to be good examples for use of overly long words), but every once in a while a developer looks for ways to “automatically” break words.

Let’s take a look at possible solutions (example page).

word-break

word-break is a formerly proprietary property introduced by Microsoft (who don’t care much about vendor-specific extensions), which meanwhile has been included in CSS 3.

Though word-break sounds quite promising, I understand the specification that it does not demand from implementations to really take into account grammar, but to rather provide word breaking on a per-letter basis. That’s how it works now when you try break-all (see example), as long as you test with Internet Explorer which supports parts of this formerly unstandardized property.

Since this is just a little round-up, I will state that word-break

Soft Hyphen

The soft hyphen—from Unicode’s C1 Controls and Latin-1 Supplement (PDF)—is usually injected via ­ or ­, respectively. Skipping Jukka Korpela’s former article on SHY, we must note that it

Zero-Width Space

Zero-width spaces—see Unicode’s General Punctuation chart (PDF)—are used the same way as soft hyphens, namely by placing ​ entity references in your HTML. So what’s to note when you bank on zero-width spaces?

You’re probably as wise as before, but beside correcting me on details (other nifty Unicode characters?) of this hastily written post please take another look at the aforementioned test page.

Update (July 9, 2007)

Breaking: The soft hyphen has been fixed in the Gecko core.

Was this useful or interesting? Share (toot) this post, or maybe treat me to a coffee. Thanks!

About Me

Jens Oliver Meiert, on September 30, 2021.

I’m Jens, and I’m an engineering lead and author. I’ve worked as a technical lead for companies like Google and as an engineering manager for companies like Miro, I’m close to W3C and WHATWG, and I write and review books for O’Reilly and Frontend Dogma.

With my current move to Spain, I’m open to a new remote frontend leadership position. Feel free to review and refer my CV or LinkedIn profile.

I love trying things, not only in web development, but also in other areas like philosophy. Here on meiert.com I share some of my views and experiences.

Comments (Closed)

  1. On August 3, 2007, 10:34 CEST, Miha Hribar said:

    Great article. I haven’t heard much of the mentioned zero width space, but the fact that it doesn’t work in IE6 still is a major issue (as a vast majority of users still haven’t upgraded their IE versions).

    On that note, you forgot to mention the wbr tag, as it currently is the only piece of code that works well on all browsers I tested. Though it is not a valid tag, it still gets the job done (if you can live with all those failed XHTML validation results đŸ˜Š).

    For more info on the wbr tag check out quirksmode

  2. On March 19, 2009, 18:11 CET, LeeJH said:

    <span style="font-size:0"> </span> gives an invisible space that the browser can wrap on, but the downside is that it ends up in the clipboard and if you use it excessively (between every character) it takes too long to render.

  3. On December 20, 2009, 14:49 CET, unlx said:

    Another possible option is using the word-spacing CSS option, which is pretty widely supported. If you set it to a negative value your spaces appear invisible. Again, like all but word-break the space does then appear when the text is copy/pasted.